home *** CD-ROM | disk | FTP | other *** search
/ Thinkin' Things 3 / TT3.ISO / mac / TT3 Dear Parents / PREMOVIE 13" / 00001_Script_1
Text File  |  1994-12-28  |  756b  |  24 lines

  1. on exitFrame
  2.   cursor 4
  3.   if the quickTimePresent = FALSE then 
  4.     alert "QuicktimeÖ is not active."
  5.     quit
  6.   end if
  7.   
  8.   put (the stageLeft * 2) + (the stageRight - the stageLeft) into horizontalRes
  9.   put (the stageTop * 2) + (the stageBottom - the stageTop) into verticalRes
  10.   
  11.   if (horizontalRes < 640) or (verticalRes < 480) then
  12.     alert "ôDear Parentsö requires the main screen to be at least 640 x 480 pixels."
  13.     quit
  14.   end if
  15.   
  16.   global gStartingColorDepth 
  17.   put the colorDepth into gStartingColorDepth  
  18.   set the colorDepth to 8
  19.   if the colorDepth < 8 then
  20.     alert "ôDear Parentsö requires a monitor that is capable of displaying 256 colors."
  21.     set the colorDepth to gStartingColorDepth
  22.     quit
  23.   end if 
  24. end